POST
/
v1
/
shipping
/
shipments
/
{id}
/
shipped
Mark Shipment as Shipped
curl --request POST \
  --url https://{client_id}.shipstream.app/api/global/v1/shipping/shipments/{id}/shipped \
  --header 'Content-Type: application/json' \
  --data '{
  "primary_tracking_number": "987654321",
  "primary_tracking_description": "FedEx Ground",
  "alternate_tracking_number": "123456789",
  "alternate_tracking_description": "FedEx Alternate",
  "manifest_courier_code": "FEDEX"
}'
This response does not have an example.

Path Parameters

id
integer
required

The id of the referenced Shipment.

Required range: x >= 1

Body

application/json

The body is of type object.

Response

200

OK - The operation completed successfully and there is no response body.